home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 273_01.zip / LOCATE.CC < prev    next >
Text File  |  1993-04-04  |  231b  |  10 lines

  1. #include <dos.h>
  2. locate(int row, int col)
  3. /* Position the cursor at row,col */
  4. {
  5.         union REGS inregs;
  6.         inregs.h.ah=2; inregs.h.dh=row; inregs.h.dl=col;
  7.         inregs.h.bh=0;
  8.         int86(0x10,&inregs,&inregs);
  9. }
  10.